ImageGear v26.3 - Updated
ImageGear.Core Assembly / ImageGear.Formats.XMP Namespace / ImGearXMPArray<T> Class / RemoveAt Method
The zero-based index of the element to remove.




In This Topic
    RemoveAt Method (ImGearXMPArray<T>)
    In This Topic
    Removes the element at the specified index of the ImGearXMPArray<T>.
    Syntax
    'Declaration
     
    Public Sub RemoveAt( _
       ByVal index As Integer _
    ) 
    'Usage
     
    Dim instance As ImGearXMPArray(Of T)
    Dim index As Integer
     
    instance.RemoveAt(index)
    public void RemoveAt( 
       int index
    )
    public: void RemoveAt( 
       int index
    ) 
    public:
    void RemoveAt( 
       int index
    ) 

    Parameters

    index
    The zero-based index of the element to remove.
    Exceptions
    ExceptionDescription

    index is less than 0.

    -or-

    index is greater than Count.

    See Also